home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet internetowy / Przegladarki internetowe / Mozilla Seamonkey 1.0.5 pl / seamonkey-1.0.5.pl-PL.win32.installer.exe / MAIL.XPI / bin / chrome / messenger.jar / content / messenger / msgSynchronize.xul < prev    next >
Encoding:
Extensible Markup Language  |  2004-04-17  |  3.5 KB  |  82 lines

  1. <?xml version="1.0"?>
  2.  
  3. <!--
  4.  
  5.  ***** BEGIN LICENSE BLOCK *****
  6.  Version: MPL 1.1/GPL 2.0/LGPL 2.1
  7.  
  8.  The contents of this file are subject to the Mozilla Public License Version
  9.  1.1 (the "License"); you may not use this file except in compliance with
  10.  the License. You may obtain a copy of the License at
  11.  http://www.mozilla.org/MPL/
  12.  
  13.  Software distributed under the License is distributed on an "AS IS" basis,
  14.  WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  15.  for the specific language governing rights and limitations under the
  16.  License.
  17.  
  18.  The Original Code is mozilla.org Code.
  19.  
  20.  The Initial Developer of the Original Code is
  21.  Netscape Communications Corporation.
  22.  Portions created by the Initial Developer are Copyright (C) 1998-2001
  23.  the Initial Developer. All Rights Reserved.
  24.  
  25.  Contributor(s):
  26.    dianesun@netscape.com
  27.    H├Ñkan Waara <hwaara@chello.se>
  28.  
  29.  Alternatively, the contents of this file may be used under the terms of
  30.  either of the GNU General Public License Version 2 or later (the "GPL"),
  31.  or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  32.  in which case the provisions of the GPL or the LGPL are applicable instead
  33.  of those above. If you wish to allow use of your version of this file only
  34.  under the terms of either the GPL or the LGPL, and not to allow others to
  35.  use your version of this file under the terms of the MPL, indicate your
  36.  decision by deleting the provisions above and replace them with the notice
  37.  and other provisions required by the GPL or the LGPL. If you do not delete
  38.  the provisions above, a recipient may use your version of this file under
  39.  the terms of any one of the MPL, the GPL or the LGPL.
  40.  
  41.  ***** END LICENSE BLOCK ***** -->
  42.  
  43. <?xml-stylesheet href="chrome://messenger/skin/dialogs.css" type="text/css"?>
  44.  
  45. <!DOCTYPE dialog SYSTEM "chrome://messenger/locale/msgSynchronize.dtd" >
  46. <dialog    xmlns:NC="http://home.netscape.com/NC-rdf#"
  47.         xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  48.         id="msg-synchronizer" 
  49.         title="&MsgSynchronize.label;"
  50.         onload="OnLoad();"
  51.         style="width: 35em;"
  52.         ondialogaccept="return syncOkButton();">
  53.  
  54. <script src="chrome://global/content/strres.js"/>
  55. <script type="application/x-javascript" src="chrome://messenger/content/mailWindowOverlay.js"/>
  56. <script type="application/x-javascript" src="chrome://messenger/content/mailCommands.js"/>
  57. <script type="application/x-javascript" src="chrome://messenger/content/msgMail3PaneWindow.js"/>
  58. <script type="application/x-javascript" src="chrome://messenger/content/msgSynchronize.js"/>
  59.  
  60.     <keyset id="keyset"/>
  61.     <label hidden="true" wsm_persist="true" id="server.type"/>
  62.  
  63.     <description class="desc">&MsgSyncDesc.label;</description>
  64.     <separator class="thin"/>
  65.     <label value="&MsgSyncDirections.label;"/>
  66.  
  67.     <vbox class="indent" align="start">
  68.         <checkbox id="syncMail" hidable="true" hidefor="movemail,pop3" label="&syncTypeMail.label;"
  69.                   accesskey="&syncTypeMail.accesskey;"/>
  70.         <checkbox id="syncNews" label="&syncTypeNews.label;" accesskey="&syncTypeNews.accesskey;"/>
  71.     </vbox>
  72.     <vbox align="start">
  73.         <checkbox id="sendMessage" label="&sendMessage.label;" accesskey="&sendMessage.accesskey;"/>
  74.         <checkbox id="workOffline" label="&workOffline.label;" accesskey="&workOffline.accesskey;"/>
  75.     </vbox>
  76.     <separator class="thin"/>
  77.     <hbox align="right">
  78.         <button id="select" label="&selectButton.label;" accesskey="&selectButton.accesskey;"
  79.                 oncommand="OnSelect();"/>
  80.     </hbox>
  81. </dialog>
  82.